home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir29 / gmblmt94.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1994-08-09  |  4KB  |  103 lines

  1. echo off 
  2. cls
  3. break on
  4. if %0==a:install goto adrive
  5. if %0==A:install goto adrive
  6. if %0==A:INSTALL goto adrive
  7. if %0==b:install goto bdrive
  8. if %0==B:install goto bdrive
  9. if %0==B:INSTALL goto bdrive
  10. if %0==install goto doinstall
  11. if %0==INSTALL goto doinstall
  12. echo Please switch to the drive you wish to install from before
  13. echo starting install.  For example, to install from the A: drive,
  14. echo Enter         A:
  15. echo Then enter    INSTALL %1
  16. goto End
  17. :adrive
  18. a:
  19. goto doinstall
  20. :bdrive
  21. b:
  22. goto doinstall
  23. :doinstall
  24. if "%1"=="" goto DriveNeeded
  25. if exist %1\*.* goto makedir
  26. :InvalidDrive
  27. echo "%1" is an invalid drive name.  Please use the correct drive letter
  28. echo followed by a colon:
  29. :DriveNeeded
  30. echo Please specify which drive to install Football Edition 1994 to,
  31. echo for example:
  32. :Example
  33. echo.
  34. echo         install c:
  35. goto End
  36. :MakeDir
  37. echo ╔══════════════════════════════════════════════════════════════════╗
  38. echo ║                                                                  ║
  39. echo ║                        GAMBLER'S MATE                            ║
  40. echo ║                    Football Edition  1994                        ║
  41. echo ║                      Copyright (c) 1994                          ║
  42. echo ║                      All Rights Reserved                         ║
  43. echo ║                                                                  ║
  44. echo ║                       By Mark E. Savey                           ║
  45. echo ║                     Disk Install Utility                         ║
  46. echo ║                                                                  ║
  47. echo ║                                                                  ║
  48. echo ║  This program will install all files into a directory called     ║
  49. echo ║  "\GM\GM94" on drive %1.  TWO "BACKUP" directories will also     ║
  50. echo ║  created "\GM\GM94\PREDICT" and "\GM\GM94\UPDATE", to allow      ║
  51. echo ║  all data files to be created, as a safety measure.              ║
  52. echo ║                                                                  ║
  53. echo ║  If you do NOT wish to install, press Ctrl-C then "Y" now.       ║
  54. echo ║                                                                  ║
  55. echo ╚══════════════════════════════════════════════════════════════════╝
  56. echo.
  57. pause
  58. echo.
  59. echo Checking for existence of %1\GM\GM94...
  60. if exist %1\GM\GM94\*.* goto DirExists
  61. if not exist %1\GM\*.* goto makeit
  62. goto carryon
  63. :makeit
  64. md %1\GM > NUL
  65. :carryon
  66. echo.
  67. echo Making appropriate Football Edition 1994 directories...
  68. md %1\GM\GM94 > NUL
  69. md %1\GM\GM94\PREDICT > NUL
  70. md %1\GM\GM94\UPDATE > NUL
  71. echo Everything is OK.  %1\GM\GM94, %1\GM\GM94\PREDICT and UPDATE have been made!
  72. goto CopyFiles
  73. :DirExists
  74. echo WARNING:  The directory %1\GM\GM94 already exists.  Press Ctrl-C then
  75. echo           "Y" now if you don't want to overwrite the contents of that
  76. echo           directory.
  77. echo.
  78. pause
  79. echo.
  80. :CopyFiles
  81. echo.
  82. echo Extracting and copying "Football Edition 1994" files to %1\GM\GM94...
  83. copy/v *.* %1\GM\GM94
  84. if not exist %1\GM\GM94\RECORD.S3 goto InstallError
  85. cls
  86. echo ╔══════════════════════════════════════════════════════════════════════╗
  87. echo ║                                                                      ║
  88. echo ║  Football Ed. 1994 has been successfully installed to your %1 drive. ║
  89. echo ║                                                                      ║
  90. echo ║      To run Football Edition 1994  type  GM94  and press ENTER.      ║
  91. echo ║                                                                      ║
  92. echo ╚══════════════════════════════════════════════════════════════════════╝
  93. %1
  94. cd %1\GM\GM94
  95. goto End
  96. :InstallError
  97. echo ERROR:  Installation of Football Edition 1994 into %1\GM\GM94 was unsuccessful.
  98. echo         This could be caused because your %1 drive is full or unaccessible.
  99. echo         Football Edition 1994 needs about 400K of free disk space.
  100. echo.
  101. :End
  102. echo.
  103.